home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Mnu / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  913 b   |  41 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 1 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef FWRESFIL_K
  7. #include "FWResFil.k"
  8. #endif
  9.  
  10. #ifndef DEFINES_K
  11. #include "Defines.k"
  12. #endif
  13.  
  14. #ifndef FWMENUS_FR
  15. #include "FWMenus.fr"
  16. #endif
  17.  
  18. //========================================================================================
  19. resource FW_RMenuBar(kMenuBarID)
  20. {
  21.     {
  22.         FW_RPullDownMenu 
  23.         (
  24.             "MyPartMenu"
  25.             {
  26.                 FW_RTextItem(cItemOneCommand, '1', "Item One"),
  27.                 FW_RTextItem(cItemTwoCommand, '2', "Item Two")
  28.             }
  29.         ),
  30.         FW_RPullDownMenu 
  31.         (
  32.             "MyFrameMenu"
  33.             {
  34.                 FW_RTextItem(cItemThreeCommand, '3', "Item Three"),
  35.                 FW_RSeparatorItem(),
  36.                 FW_RTextItem(cSoundCommand, '4', "Sound")
  37.             }
  38.         )
  39.     }
  40. };  
  41.